FLAGS = -std=c99 -Wall

all: printTime

printTime: printTime.c
	gcc -o printTime ${FLAGS} printTime.c

clean:
	rm -f printTime
